how to delete print statement from console pythonn

29

how to delete print statement from console pythonn -

import time
for x in range (0,5):  
    b = "Loading" + "." * x
    print (b, end="\r")
    time.sleep(1)

Comments

Submit
0 Comments